home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
SYS
/
s
/
AskAll.rush
< prev
next >
Wrap
Text File
|
1996-09-26
|
430b
|
26 lines
/*
** $VER: AskAll.rush 37.1 (10.12.93)
**
** Ask for a Pattern, set pattern gadget, execute ALL, change pattern back
**
** Written by Douglas Keller
*/
if( address() == "REXX" ) then address "RUSH.1"
options results
'getpattern'
old_pattern = result
'stringrequester "Enter pattern to use for selecting:"' old_pattern
if RC == 0 then do
new_pattern = result
'setpattern' new_pattern
'all'
'setpattern' old_pattern
end